home *** CD-ROM | disk | FTP | other *** search
/ Macromedia Multimedia Showcase 5.1 / Macromedia - Multimedia Showcase 5.1 (Macromedia) (1996).ISO / pc / media / shared.dir / 02007_Script_2007 < prev    next >
Text File  |  1996-03-28  |  570b  |  27 lines

  1. -- START of QuickTime sequence (Video, Sound)
  2.  
  3. on enterFrame
  4.   global gNavObj
  5.   if not(the fadingOut of gNavObj) then
  6.     set mySprite = the QTMSprite of gNavObj
  7.     set the movieRate of sprite mySprite = 0
  8.     -- PrepQTMSequence(gNavObj)
  9.   end if
  10. end
  11.  
  12. --
  13.  
  14. on exitFrame
  15.   global gNavObj
  16.   UpdateRollover(gNavObj)  
  17.   if not(the fadingOut of gNavObj) then    
  18.     set the fadingOut of gNavObj = TRUE
  19.     StartMusicFadeOut(gNavObj)
  20.   end if
  21.   --
  22.   if MusicFadeOutDone(gNavObj) then
  23.     StartQTMEvent(gNavObj)
  24.   else
  25.      go the frame
  26.   end if
  27. end